Return FALSE if not shoing the titles. (#70959, Thomas Leonard)
authorOwen Taylor <otaylor@redhat.com>
Fri, 8 Feb 2002 19:39:26 +0000 (19:39 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Fri, 8 Feb 2002 19:39:26 +0000 (19:39 +0000)
Fri Feb  8 14:30:14 2002  Owen Taylor  <otaylor@redhat.com>

* gtk/gtkclist.c (title_focus_in): Return FALSE if
not shoing the titles. (#70959, Thomas Leonard)

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkclist.c

index c903cd4db3bffbea39708a80325b8802d19cc39c..3b6d5375dc2a4b22a56bde8504bd5e97659c0afb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Feb  8 14:30:14 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkclist.c (title_focus_in): Return FALSE if
+       not shoing the titles. (#70959, Thomas Leonard)
+
 2002-02-08  Darin Adler  <darin@bentspoon.com>
 
        * demos/gtk-demo/main.c: (load_file): isspace -> g_ascii_isspace
index c903cd4db3bffbea39708a80325b8802d19cc39c..3b6d5375dc2a4b22a56bde8504bd5e97659c0afb 100644 (file)
@@ -1,3 +1,8 @@
+Fri Feb  8 14:30:14 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkclist.c (title_focus_in): Return FALSE if
+       not shoing the titles. (#70959, Thomas Leonard)
+
 2002-02-08  Darin Adler  <darin@bentspoon.com>
 
        * demos/gtk-demo/main.c: (load_file): isspace -> g_ascii_isspace
index c903cd4db3bffbea39708a80325b8802d19cc39c..3b6d5375dc2a4b22a56bde8504bd5e97659c0afb 100644 (file)
@@ -1,3 +1,8 @@
+Fri Feb  8 14:30:14 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkclist.c (title_focus_in): Return FALSE if
+       not shoing the titles. (#70959, Thomas Leonard)
+
 2002-02-08  Darin Adler  <darin@bentspoon.com>
 
        * demos/gtk-demo/main.c: (load_file): isspace -> g_ascii_isspace
index c903cd4db3bffbea39708a80325b8802d19cc39c..3b6d5375dc2a4b22a56bde8504bd5e97659c0afb 100644 (file)
@@ -1,3 +1,8 @@
+Fri Feb  8 14:30:14 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkclist.c (title_focus_in): Return FALSE if
+       not shoing the titles. (#70959, Thomas Leonard)
+
 2002-02-08  Darin Adler  <darin@bentspoon.com>
 
        * demos/gtk-demo/main.c: (load_file): isspace -> g_ascii_isspace
index c903cd4db3bffbea39708a80325b8802d19cc39c..3b6d5375dc2a4b22a56bde8504bd5e97659c0afb 100644 (file)
@@ -1,3 +1,8 @@
+Fri Feb  8 14:30:14 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkclist.c (title_focus_in): Return FALSE if
+       not shoing the titles. (#70959, Thomas Leonard)
+
 2002-02-08  Darin Adler  <darin@bentspoon.com>
 
        * demos/gtk-demo/main.c: (load_file): isspace -> g_ascii_isspace
index c903cd4db3bffbea39708a80325b8802d19cc39c..3b6d5375dc2a4b22a56bde8504bd5e97659c0afb 100644 (file)
@@ -1,3 +1,8 @@
+Fri Feb  8 14:30:14 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkclist.c (title_focus_in): Return FALSE if
+       not shoing the titles. (#70959, Thomas Leonard)
+
 2002-02-08  Darin Adler  <darin@bentspoon.com>
 
        * demos/gtk-demo/main.c: (load_file): isspace -> g_ascii_isspace
index c903cd4db3bffbea39708a80325b8802d19cc39c..3b6d5375dc2a4b22a56bde8504bd5e97659c0afb 100644 (file)
@@ -1,3 +1,8 @@
+Fri Feb  8 14:30:14 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtkclist.c (title_focus_in): Return FALSE if
+       not shoing the titles. (#70959, Thomas Leonard)
+
 2002-02-08  Darin Adler  <darin@bentspoon.com>
 
        * demos/gtk-demo/main.c: (load_file): isspace -> g_ascii_isspace
index 1e73ed5b634123ab4f6ada5cd12b6e6011a87c67..f831d153b5ef8a0def4de3c90a0dfac88ef79575 100644 (file)
@@ -6614,6 +6614,9 @@ title_focus_in (GtkCList *clist, gint dir)
   gint i;
   gint left, right;
 
+  if (!GTK_CLIST_SHOW_TITLES (clist))
+    return FALSE;
+
   /* Check last focused column */
   if (clist->focus_header_column != -1)
     {